Web Playground

Academy Endpoint

Interactive request form for this API endpoint.

Each card below maps directly to an API endpoint. Query, path, and request body fields are generated from OpenAPI.

GET Hero Lane Time-based Win Rate

/web/academy/heroes/{hero_identifier}/win-rate/timeline

Open Only This

Retrieve time-based win rate statistics for a specific hero in a given lane. Supports query parameters for rank, pagination, and localization.

Path parameters:

  • hero_identifier: Hero identifier as numeric hero ID or hero name. Accepts values like 30, Yi Sun-shin, or yisunshin.

Query parameters:

  • lane: Lane. Allowed values: exp, mid, roam, jungle, gold. from /api/academy/heroes/{hero_identifier}/lane
  • rank: Rank filter. Allowed values: all, epic, legend, mythic, honor, glory.
  • size: Number of items per page (minimum: 1).
  • index: Page index (starting from 1).
  • lang: Language code for localized content (default: en).

The response includes hero lane time-based win rate data:

  • records: Array of hero entries, each containing:
      • _id: Unique record identifier.
      • _createdAt: Creation timestamp.
      • _updatedAt: Last update timestamp.
      • data:
          • heroid: Hero ID.
          • hero_name: Hero name.
          • real_road: Lane ID (e.g., 4 for Jungle).
          • total_win_rate: Overall win rate for the hero in this lane.
          • time_win_rate: Array of segmented win rates by match duration:
              • time_min: Minimum time interval (minutes).
              • time_max: Maximum time interval (minutes).
              • win_rate: Win rate within that time range.

This endpoint is useful for:

  • Analyzing hero performance progression over match duration.
  • Understanding lane-specific strengths.
  • Guiding players in timing strategies for optimal hero usage.
hero_identifier path

Hero identifier as numeric hero ID or hero name. Accepts values like 30, Yi Sun-shin, or yisunshin. Name matching ignores spaces/symbols and is case-insensitive (e.g., Luo Yi to luoyi). Required.

lane query

Filter heroes by lane /api/academy/heroes/{hero_identifier}/lane. Required.

rank query

Rank filter for hero statistics.

size query

Number of items per page. Minimum: 1.

index query

Page index for pagination. Minimum: 1.

lang query

Language code for localized content.

GET /api/academy/heroes/{hero_identifier}/win-rate/timeline